home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
oper_sys
/
emerald
/
emrldsys.lha
/
Language
/
Compiler
/
scan.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-08-16
|
344b
|
20 lines
/*
* @(#)scan.h 1.2 3/18/87
*/
#ifndef scan_h
#define scan_h
#ifndef FILE
#include <stdio.h>
#endif
#ifndef tokens_h
#include "tokens.h"
#endif
extern void Scanner_Accept();
extern char *currentFileName;
extern int currentLineNumber, nextLineNumber;
extern int currentPosition;
extern TokenBuffer lineBuffer;
extern FILE *inputFile;
#endif